-
-
Notifications
You must be signed in to change notification settings - Fork 717
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: added link to YT video to TSC page #1141
Conversation
✅ Deploy Preview for asyncapi-website ready!Built without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site settings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Welcome to AsyncAPI. Thanks a lot for creating your first pull request. Please check out our contributors guide useful for opening a pull request.
Keep in mind there are also other channels you can use to interact with AsyncAPI community. For more details check out this issue.
⚡️ Lighthouse report for the changes in this PR:
Lighthouse ran on https://deploy-preview-1141--asyncapi-website.netlify.app/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Want to have some discussion here regarding the place it is to be added.
@derberg @Anurag607 I find this place to be more appropriate to add the Youtube tutorial link for TSC members, as it describes the notion of the video as well as it is at the top of the page. WDYT?
pages/community/tsc.js
Outdated
<div className="my-4"> | ||
Want to become a member? | ||
Follow this | ||
<Link href='https://www.youtube.com/watch?v=uG_aLF9Z1F0'> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please, use TextLink
component https://github.com/asyncapi/website/blob/master/components/typography/TextLink.js, along with target="blank"
to open the video in new tab.
actually both locations are good. We can have it in both |
@derberg @akshatnema, so should I add it in the Question Card or at the end of the paragraph? |
It's better you do both implementations. |
pages/community/tsc.js
Outdated
@@ -72,6 +73,11 @@ export default function TSC() { | |||
can also build a great AsyncAPI-based project that we don't have | |||
yet in our GitHub organization and donate it (we'll ask you to | |||
stay as a maintainer). | |||
Follow this | |||
<TextLink href="https://www.youtube.com/watch?v=uG_aLF9Z1F0" target="_blank" className="text-base text-blue-500 hover:text-sky-400 no-underline"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<TextLink href="https://www.youtube.com/watch?v=uG_aLF9Z1F0" target="_blank" className="text-base text-blue-500 hover:text-sky-400 no-underline"> | |
<TextLink href="https://www.youtube.com/watch?v=uG_aLF9Z1F0" target="_blank" className="text-base font-normal text-blue-500 hover:text-sky-400 no-underline"> |
The font-weight of the text is getting large, so it should be made according to the remaining text in the paragraph.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done..
pages/community/tsc.js
Outdated
<div className="my-4"> | ||
Want to become a member? | ||
Follow this | ||
<TextLink href="https://www.youtube.com/watch?v=uG_aLF9Z1F0" target="_blank" className="text-sky-600 hover:text-sky-400 no-underline"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<TextLink href="https://www.youtube.com/watch?v=uG_aLF9Z1F0" target="_blank" className="text-sky-600 hover:text-sky-400 no-underline"> | |
<TextLink href="https://www.youtube.com/watch?v=uG_aLF9Z1F0" target="_blank" className="font-normal text-sky-600 hover:text-sky-400 no-underline"> |
same here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done...
instead of old YT recording we finally have an official document you can link to -> https://github.com/asyncapi/community/blob/master/TSC_MEMBERSHIP.md |
@derberg I will then replace the YT link with the docs link |
@Anurag607 I see that the above CSS attributes are still not applied even after adding classes. Kindly add |
@akshatnema I have updated the PR according to the review |
pages/community/tsc.js
Outdated
@@ -72,6 +74,11 @@ export default function TSC() { | |||
can also build a great AsyncAPI-based project that we don't have | |||
yet in our GitHub organization and donate it (we'll ask you to | |||
stay as a maintainer). | |||
Follow this | |||
<TextLink href="https://github.com/asyncapi/community/blob/master/TSC_MEMBERSHIP.md" target="_blank" className={twMerge(`text-base font-normal text-blue-500 hover:text-sky-400 no-underline`)}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove the twMerge
function from file as it is not needed here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have updated the PR according to the review
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM @Anurag607, anything from your side @derberg?
I'm good, thanks so much @Anurag607 ! |
/rtm |
Description
Related issue(s)
Resolves #809
Before :
After :